home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / vprintf.c < prev    next >
C/C++ Source or Header  |  1991-12-02  |  1KB  |  50 lines

  1. /* 
  2.  * vprintf.c --
  3.  *
  4.  *    Source code for the "vprintf" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/vprintf.c,v 1.1 91/12/02 20:06:08 kupfer Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <varargs.h>
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * vprintf --
  27.  *
  28.  *    Format and print one or more values, writing the output onto
  29.  *    stdout.  See the manual page for details of how the format
  30.  *    string is interpreted.
  31.  *
  32.  * Results:
  33.  *    The return value is a count of the number of characters
  34.  *    written to stdout.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. int
  43. vprintf(format, args)
  44.     char *format;        /* Format string.  See man page for details. */
  45.     va_list args;        /* Variable-length list of arguments, already
  46.                  * packaged using the varargs macros. */
  47. {
  48.     return vfprintf(stdout, format, args);
  49. }
  50.